home *** CD-ROM | disk | FTP | other *** search
/ Dynamic HTML Construction Kit / Dynamic HTML Construction Kit.iso / source_code / dhtmlunl / dhtml.exe / CD Content / Chap13 / dun13_2.txt < prev    next >
Encoding:
Text File  |  1997-12-18  |  419 b   |  23 lines

  1. <HTML>
  2.  
  3. <TITLE>
  4.  
  5. Dynamic HTML - Collections
  6.  
  7. </TITLE>
  8.  
  9.  
  10.  
  11. <BODY>
  12.  
  13. <H1>Dynamic HTML is Fun!</H1>
  14.  
  15. Why?
  16.  
  17. <UL ID=myTag>
  18.  
  19.     <LI>Because of script interaction</LI>
  20.  
  21.     <LI>Dynamic positioning and properties</LI>
  22.  
  23.     <LI>It just is!</LI>
  24.  
  25. </UL>
  26.  
  27.  
  28.  
  29. <SCRIPT LANGUAGE="VBScript">
  30.  
  31. for l=0 to document.all.length
  32.  
  33.     document.write document.all(l).tagName & "<BR>"
  34.  
  35. next
  36.  
  37. </SCRIPT>
  38.  
  39.  
  40.  
  41. </BODY>
  42.  
  43. </HTML>
  44.  
  45.